<style>
body{font-family:Segoe UI,sans-serif;min-height:100vh;display:flex;flex-direction:column}
main{flex:1}
.topbar{background:#0B3C91;color:#fff}
.section{padding:80px 0}
.hero{background:linear-gradient(135deg,#0B3C91,#1f5fd1);color:#fff;padding:100px 0}
.cardx{border:none;border-radius:18px;box-shadow:0 10px 25px rgba(0,0,0,.08);height:100%}
.footer{background:#081F4D;color:#fff;padding:60px 0 20px}
.logo-box{width:70px;height:70px;background:#f1f1f1;border-radius:10px;display:flex;align-items:center;justify-content:center}




.gallery-banner{
    background:#0d47a1;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.gallery-banner h1{
    font-size:42px;
    margin-bottom:10px;
}

.gallery-banner p{
    font-size:18px;
}

.gallery-section{
    padding:60px 0;
}

.gallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:40px;
}

.gallery-filter button{
    border:none;
    background:#f1f5f9;
    padding:10px 18px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
}

.gallery-filter button.active{
    background:#0d47a1;
    color:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
    display:block;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

@media(max-width:992px){

.gallery-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.gallery-banner h1{
    font-size:32px;
}

}

@media(max-width:480px){

.gallery-grid{
    grid-template-columns:1fr;
}

}

@media (max-width:768px){

.logo-box{
    width:50px;
    height:50px;
}

.logo-box img{
    width:50px !important;
}

.navbar-brand small{
    font-size:11px;
    display:block;
    line-height:1.1;
}

}
</style>
.contact-topbar{text-align:center}.phone-line,.email-line{display:inline-block}.phone-line{margin-right:12px}@media(max-width:768px){.phone-line,.email-line{display:block;margin-right:0}.email-line{margin-top:4px}}